home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / Expander / Expander Classes / CExpanderLabelEnv.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  881 b   |  36 lines  |  [TEXT/KAHL]

  1. /***********************************************************************************
  2.     CExpanderLabelEnv.h
  3.  
  4.     Copyright © 1994 B-Ray Software. All rights reserved.
  5.     Developed using Symantec C++ 7.0.2 and Symantec's TCL library.
  6.     Portions of this code courtesy Symantec, Inc.
  7.  
  8.     This code may be freely distributed as long as this notice remains. This code
  9.     may not be used in any commercial software without the consent of B-Ray Software.
  10.  
  11.     ---
  12.  
  13.     Header file for CExpanderLabelEnv class.
  14.  
  15. ***********************************************************************************/
  16. #pragma once
  17.  
  18. #include <CEnvironment.h>
  19.  
  20.  
  21. class CExpanderLabelEnv : public CEnvironment {
  22.  
  23. private:
  24.     short        savedFace;    // data saved between Restore and PutBack
  25.  
  26. public:
  27.  
  28.     TCL_DECLARE_CLASS
  29.  
  30.     CExpanderLabelEnv();
  31.     virtual ~CExpanderLabelEnv();
  32.  
  33.     virtual void    Restore( void );
  34.     virtual void    PutBack( void );
  35. };
  36.